home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / dosex / ex12.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  292 b   |  15 lines

  1. Program Example12;
  2. uses Dos;
  3.  
  4. { Program to demonstrate the FSplit function. }
  5.  
  6. var
  7.   Path,Name,Ext : string;
  8. begin
  9.   FSplit(ParamStr(1),Path,Name,Ext);
  10.   WriteLn('Splitted ',ParamStr(1),' in:');
  11.   WriteLn('Path     : ',Path);
  12.   WriteLn('Name     : ',Name);
  13.   WriteLn('Extension: ',Ext);
  14. end.
  15.